5e6fc48b9355efe4a31c80e42f69d3eae1859d82,src/main/java/io/hgraphdb/HBaseBulkLoader.java,HBaseBulkLoader,setProperty,#Edge#String#Object#,148
Before Change
}
}
PropertyWriter propertyWriter = new PropertyWriter(graph, e, key, value);
edgesMutator.mutate(getMutationList(propertyWriter.constructMutations()));
} catch (IOException e) {
throw new HBaseGraphException(e);
}
After Change
}
}
PropertyWriter propertyWriter = new PropertyWriter(graph, e, key, value);
if (edgesMutator != null) edgesMutator.mutate(getMutationList(propertyWriter.constructMutations()));
} catch (IOException e) {
throw new HBaseGraphException(e);
}